/* ================================
   Synthwave / 80s Neon Theme
   for search.brad.blue
   ================================ */

/* Fonts (optional): uncomment if you want Orbitron + Inter from Google Fonts)
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&family=Orbitron:wght@500;700&display=swap');
*/

:root{
  /* Core palette */
  --bg-deep: #0a0615;           /* starry night */
  --bg-mid:  #120a2a;
  --neon-pink: #ff3ec8;
  --neon-purple: #9a4dff;
  --neon-cyan: #14e6ff;
  --neon-blue: #00a6ff;
  --sunset: #ff7b36;
  --grid: rgba(255, 20, 255, .15);

  /* Neons & shadows */
  --glow-pink: 0 0 8px #ff3ec8, 0 0 16px #ff3ec8, 0 0 32px #ff3ec8;
  --glow-cyan: 0 0 8px #14e6ff, 0 0 16px #14e6ff, 0 0 32px #14e6ff;
  --glow-blue: 0 0 8px #00a6ff, 0 0 16px #00a6ff, 0 0 32px #00a6ff;

  /* Layout */
  --radius-lg: 16px;
  --radius-sm: 10px;
  --container: 1080px;
}

/* Global reset-ish */
*{ box-sizing: border-box; }
html, body{ height: 100%; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  color: #e8f7ff;
  background:
    /* horizon glow */
    radial-gradient(60% 30% at 50% 70%, #4d0066 0%, rgba(77,0,102,0) 60%) ,
    /* sunset stripe behind logo area */
    radial-gradient(50% 20% at 50% 18%, rgba(255,123,54,.35), rgba(255,123,54,0) 70%),
    linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 60%);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
}

/* ===== Background neon grid floor ===== */
body::after{
  content:"";
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: 45vh;
  background:
    /* grid lines */
    linear-gradient(to top, rgba(255,255,255,0.12), rgba(255,255,255,0) 60%),
    repeating-linear-gradient(0deg,   var(--grid) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(90deg,  var(--grid) 0 1px, transparent 1px 64px);
  transform-origin: center bottom;
  transform: perspective(800px) rotateX(60deg);
  pointer-events: none;
  z-index: 0;
}

/* Containers */
.container{
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 16px;
  position: relative;
  z-index: 1;
}

/* ===== Header / Top Bar ===== */
.site-header{
  padding: 28px 0 8px;
  background: linear-gradient(180deg, rgba(255,123,54,.18), rgba(255,123,54,0));
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.logo{
  font-family: "Orbitron", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: lowercase;
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  text-shadow:
    0 0 2px #fff,
    0 0 10px var(--neon-pink),
    0 0 22px var(--neon-purple),
    0 0 36px var(--neon-purple);
}
.logo .dot{ color: var(--neon-cyan); text-shadow: var(--glow-cyan); }

.nav{
  display: flex; gap: 18px; flex-wrap: wrap; margin-top: 10px;
}
.nav a{
  color: #cbeeff;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(4px);
  transition: transform .15s ease, box-shadow .15s ease, color .15s ease, background .15s ease;
}
.nav a:hover{
  color: #fff;
  background: rgba(20,230,255,.06);
  box-shadow: var(--glow-blue);
  transform: translateY(-1px);
}

/* ===== Search Bar ===== */
.search-wrap{
  margin: 26px 0 18px;
}
.search-bar{
  display: flex;
  gap: 10px;
  align-items: stretch;
  background: linear-gradient(180deg, rgba(20,230,255,.07), rgba(154,77,255,.06));
  border: 1px solid rgba(20,230,255,.35);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: 0 0 0 1px rgba(154,77,255,.25) inset, var(--glow-cyan);
}
.search-bar input[type="text"],
.search-bar input[type="search"]{
  flex: 1;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.15);
  color: #eaffff;
  padding: 14px 16px;
  font-size: 16px;
  border-radius: var(--radius-sm);
  outline: none;
  box-shadow: 0 0 0 transparent;
}
.search-bar input::placeholder{ color: #a7d8ff; opacity: .7; }

/* Buttons */
.btn{
  appearance: none;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: .3px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: #0c0f17;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  box-shadow: var(--glow-pink);
  transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
}
.btn:hover{ transform: translateY(-1px) scale(1.01); filter: brightness(1.04); }
.btn:active{ transform: translateY(0) scale(.99); }

/* Variant */
.btn-outline{
  color: #eaffff;
  background: transparent;
  border: 2px solid var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

/* ===== Filters / Sort ===== */
.controls{
  display: flex; flex-wrap: wrap; gap: 10px


/* Reset */

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,dfn,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}

html,
body {
  height: 100%;   background-color: #000;
}

body{
margin:0; padding:0; color: #fff; text-align: center; background: url(../images/bg.jpg) right bottom no-repeat; -webkit-background-size: cover; -moz-background-size: cover;
-o-background-size: cover; background-size: cover; box-shadow: inset 0 0 100px rgba(0,0,0,0.5); position: relative;
}

.black{
background-color: rgba(0, 0, 0, 0.5);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
a{color:white; text-decoration: none;}

#sponsor{
max-width:100%;
}

#wrapper{
	position: relative;
	width: 100%;
	margin: auto;
}

#header{
	width: 100%;
	padding: 100px 0 100px 0;
	margin: auto;
}

h1{
	font-family: 'Pacifico', cursive;
	font-size: 103px;
}

h2{
	font-family: 'Josefin Sans', sans-serif;
	font-size: 30px;
	letter-spacing: 4px;
}

h2 strong.sep-one{
	width: 60px;
	height: 1px;
	background: #fff;
	position: absolute;
	margin-left: -80px;
	margin-top: 15px;
}

h2 strong.sep-two{
	width: 60px;
	height: 1px;
	background: #fff;
	position: absolute;
	margin-left: 15px;
	margin-top: 15px;
}


#middle{
	width: 100%;
	background: #ffffff;
	padding: 10px 0;
	margin: 50px 0;
}

#middle p{
	font-family: 'Josefin Sans', sans-serif;
	font-size: 24px;
	color: #000000;
	line-height: 34px;
	padding: 0 30%;
}

#middle p span{
	color:#224488;
}

#footer{
	width: 100%;
}
#bottom{
	width: 100%;
	float:bottom;
	align:center;
	color:white;
}

@media screen and (max-width: 568px){
	#header{
		width: 100%;
		padding: 10px 0 10px 0;
		margin: auto;
	}


	h1{
		font-size: 50px;
	}
	
	h2{
		
		font-size: 15px;
		letter-spacing: 2px;
	}

	h2 strong.sep-one{
		width: 30px;
		margin-left: -40px;
		margin-top: 7px;
	}
	
	h2 strong.sep-two{
		width: 30px;
		margin-left: 10px;
		margin-top: 7px;
	}

	#middle{
		margin: 10px 0 10px 0;
		width: 95%;
		padding: 5%;
	}
	
	#middle p{
		font-size: 18px;
		color: #000000;
		line-height: 24px;
		padding: 0;
	}
	
	#middle p span{
		color:#224488;
	}

	
}

